:root {
    --theme-text: #80c739;
    --theme-main-dark-bg: #80c739;
    --theme-main-bg: #80c739;
    --theme-main-light-bg: #c5dfab;
    --theme-main-lighter-bg: #f2f9f2;
    --theme-border: #e0e0e0;
}

html {
  font-size: 14px;
}

    --bs-blue: #0d6efd;


.toggle-icon {
    transition: transform .2s ease;
}

a[aria-expanded="true"] .toggle-icon {
    transform: rotate(180deg);
}


.nav-pills .nav-link.active {
    background-color: var(--theme-main-bg);
}

.nav-pills .nav-link { 
    color: var(--bs-black);
}

.hover-item:hover {
    background: var(--theme-main-lighter-bg);
}






:root {
    --bg: #0b1220;
    --panel: #0f1b33;
    --line: #243a66;
    --text: #e8f0ff;
    --muted: #a9b9dd;
    --accent: #7aa8ff; 
}

.text-link {
    color: var(--bs-link-color);
}

/* ===== Payload Documentation (pl_) ===== */
.pl_wrap {
    margin: 0;
    padding: 0 28px;
}

.pl_title {
    font-size: 20px;
    margin: 0 0 6px 0
}

.pl_subtitle {
    color: var(--muted);
    font-size: 13px;
    margin-bottom: 18px
}

.pl_toolbar {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 16px;
}

.pl_btn {
    cursor: pointer;
    border: 1px solid #777A7A;
    background: #777A7A;
    color: var(--text);
    padding: 8px 12px;
    font-size: 12px;
}

    .pl_btn:hover {
        background: #fff;
        color: #777A7A;
    }

.pl_details {
    background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
    border: 1px solid #777a7a32;
    margin-bottom: 0;
    overflow: hidden;
    background: #fff;
}

    .pl_details[open] {
        box-shadow: 0 12px 30px rgba(0,0,0,.25)
    }

.pl_summary {
    list-style: none;
    cursor: pointer;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

    .pl_summary.json_response {
        background: #f0f0f0;
    }


    .pl_summary::-webkit-details-marker {
        display: none
    }

.pl_badge {
    font-size: 11px;
    color: var(--muted);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 999px;
    padding: 3px 10px;
}

 
     

.pl_pre {
    background: rgba(0,0,0,.25);
    border: 1px solid rgba(255,255,255,.12);
    padding: 14px;
    border-radius: 12px;
    font-size: 12px;
    overflow: auto;
}

.pl_mono {
    font-family: ui-monospace, Menlo, Consolas, monospace
}



















 /*code highlight start*/

/* JSON Container */
code.json {
    display: block;
    padding: 5px 20px;
    background: #1e1e1e;
    color: #d4d4d4;
    font-family: Consolas, "Courier New", monospace;
    font-size: 14px;
    line-height: 1.6; 
    overflow-x: auto;
    white-space: pre-wrap; /* preserve indentation */
}

    


 
 /*code highlight end*/


@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}